Strings
Given any string s, which of the following always have the same value as s? (Be careful, s could be '')
s
''
('a' + s)[1:]
s[0] + s[1:]
s + ''
s[0:]